* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', "Yu Gothic", Meiryo, sans-serif;
  color: #1A1A1A;
  background: #fff;
}

/* カラー変数 */
:root {
  --green: #1D9E75;
  --dark-green: #085041;
  --light-green: #E1F5EE;
  --mid-green: #9FE1CB;
  --bg-green: #F2FCF8;
  --gray: #64748B;
  --light-gray: #F8F9FA;
  --border: #E2E8F0;
  --red: #E24B4A;
  --navy: #053A82;
  --teal: #053A82;
  --teal-dark: #04496A;
}

.sp-br {
  display: none;
}

html {
  scroll-behavior: smooth;
}

.hero-title-sp {
  display: none;
}

/* ヘッダー */
.lp-header {
  height: 90px;
  background: linear-gradient(#ffffff, #ededed);
  z-index: 10;
}

.lp-header-inner {
  max-width: 1900px;
  /* 控制内容宽度（关键） */
  margin: 0 auto;
  /* 居中 */
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 40px;
}


.lp-logo {
  display: flex;
  align-items: center;
}

/* logo图片 */
.lp-logo img {
  width: 10%;
  max-width: 172px;
  min-width: 150px;
  height: auto;
}

.lp-menu {
  display: none;
  width: 35px;
  height: 24px;
  position: absolute;
  top: 30px;
  right: 25px;
  cursor: pointer;
  transition-property: top, right;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
  z-index: 20;
}

.lp-menu .line1 {
  width: 35px;
  height: 4px;
  background-color: #0d0d0d;
  top: 0;
  right: 0;
  position: absolute;
}

.lp-menu .line2 {
  width: 35px;
  height: 4px;
  background-color: #0d0d0d;
  top: 10px;
  right: 0;
  position: absolute;
}

.lp-menu .line3 {
  width: 35px;
  height: 4px;
  background-color: #0d0d0d;
  top: 20px;
  right: 0;
  position: absolute;
}

.lp-menu div {
  transition: all 0.3s ease;
}

/* 点击后状态 */
.lp-menu.active .line1 {
  top: 10px;
  transform: rotate(45deg);
  background-color: #807e92;
}

.lp-menu.active .line2 {
  opacity: 0;
}

.lp-menu.active .line3 {
  top: 10px;
  transform: rotate(-45deg);
  background-color: #807e92;
}

/* 整个菜单面板 */
.menu-panel {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #fff;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;

  transition: 0.3s ease;
  z-index: 10;
  text-align: left;
}

.menu-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 打开状态 */
.menu-panel.active {
  transform: translateY(0);
}

/* 顶部 MENU */
.menu-header {
  background: #303030;
  color: #fff;
  font-size: 14px;
  padding: 16px;
  font-family: "A-OTF UD新ゴ Pro M", Meiryo, sans-serif;
}

/* 列表 */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 每一项 */
.menu-list li {
  border-bottom: 1px solid #e5e7eb;
}

/* 链接 */
.menu-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: #181818;
  font-size: 16px;
  font-family: "A-OTF UD新ゴ Pro M", Meiryo, sans-serif;
  font-weight: bold;
}

.menu-list a:hover {
  color: #053a82;
}

/* 右侧箭头 */
.menu-list a span {
  font-size: 24px;
  color: #999;
}



.lp-nav a {
  position: relative;
  text-decoration: none;
  font-size: 19px;
  font-weight: bold;
  color: #181818;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: all 0.25s ease;
  display: inline-block;
}


.nav-link {
  position: relative;
  padding-left: 28px;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}

.lp-header .icon-service::before {
  background-image: url("../images/icon-service.png");
}

.lp-header .icon-case::before {
  background-image: url("../images/icon-case.png");
}

.lp-header .icon-feature::before {
  background-image: url("../images/icon-feature.png");
}

.lp-header .icon-support::before {
  background-image: url("../images/icon-support.png");
}

.lp-header .icon-price::before {
  background-image: url("../images/icon-price.png");
}

.lp-nav a:hover {
  color: #053a82;
}

.lp-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-right: 24px;
}

/* ヘッダーCTAボタン */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 54px;
  padding: 0 24px;

  background-color: #FFD700;
  color: #042450;

  font-size: 19px;
  font-weight: bold;

  border-radius: 5px;
  text-decoration: none;
  border: none;

  cursor: pointer;
  transition: all 0.2s ease;
  vertical-align: middle;
  line-height: 1;
}

.header-cta:hover {
  background-color: #042450;
  color: #fff;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

/* セクション共通 */
.section {
  padding: 72px 0px 0px 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-align: center;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #053A82;
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: center;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.section-desc {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  margin-bottom: 40px;
  margin-top: 12px;
  font-weight: 500;
  text-align: center;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

/* ヒーロー*/
.hero {
  position: relative;
  padding: 100px 40px 80px;
  text-align: center;
  /* ← ここに背景画像を設定してください */
  background: url('../images/lp-hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* バッジ */
.hero-badge {
  display: inline-block;
  background: #053a82;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  padding: 6px 24px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

/* タイトル */
.hero h1 {
  font-size: 50px;
  font-weight: bold;
  color: #053a82;
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;

}


.hero h1::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(30px);
  z-index: -1;
  border-radius: 20px;
}



.hero h2 {
  font-size: 30px;
  font-weight: 800;
  color: #053a82;
  /* ← 色を変更 */
  line-height: 1.5;
  margin-bottom: 32px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

/* 指標カード（100% / 3%+）*/
.hero-metric {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 10px;
  padding: 20px 20px;
  text-align: center;
  backdrop-filter: blur(6.1px);
  -webkit-backdrop-filter: blur(6.1px);
  box-shadow: 0 4px 4px rgba(21, 47, 84, 0.25);
  width: 180px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-metric-num {
  font-size: 44px;
  font-weight: 800;
  color: #053A82;
  line-height: 1.1;

  /* 固定数字区域高度，让它们对齐 */
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-metric-label {
  font-size: 17px;
  color: #053A82;
  font-weight: bold;
  text-align: center;
  margin-top: 4px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* サブテキスト */
.hero-sub {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 700;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* CTAボタン */
.hero-cta {
  display: inline-block;
  background: #FFD700;
  color: #053A82;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(4, 73, 106, 0.3);
  border: none !important;
}

.hero-cta:hover {
  background: #053A82;
  color: #fff;
  ;
}

/* ノートテキスト */
.hero-note {
  font-size: 17px;
  color: #222;
  margin-top: 16px;
  font-weight: 700;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.highlight-title {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  z-index: 0;

}


.video-box {
  width: 100%;
  padding: 16px;
  margin-top: 36px;
  margin-bottom: 36px;
  border: 3px solid transparent;
  border-radius: 12px;

  background:
    linear-gradient(#053A82, #053A82) padding-box,
    linear-gradient(135deg,
      rgba(106, 169, 255, 0.7) 0%,
      rgba(106, 169, 255, 0.5) 50%,
      rgba(106, 169, 255, 0.7) 100%) border-box;

  box-shadow: 3px 8px 12.9px rgba(11, 35, 69, 0.28);
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  /* 占位用，可删 */
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}


/* Timeline */
.timeline {
  position: relative;
  padding: 0px 24px 72px 72px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 24px;
  bottom: 80px;
  width: 2px;
  background: #e2e8f0;
}

/* Step */
.step {
  position: relative;
  margin-bottom: 40px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-dot {
  position: absolute;
  left: -72px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

.step-dot.gray {
  background: #6AA9FF;
}

.step-dot.blue {
  background: #053A82;
}

.step-dot.amber {
  background: #FFD700;
  color: #053A82;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #053A82;
  line-height: 48px;
  margin-bottom: 4px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.step-desc {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}


/* Callout box: why 100% open */
.callout-box {
  background: #fff;
  border: 2px solid #FFD700;
  border-radius: 16px;
  padding: 28px 32px;
  margin: 16px 0 0;
}

.callout-badge {
  display: inline-block;
  background: #FFD700;
  color: #053A82;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.callout-title {
  font-size: 24px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 8px;
  line-height: 1.5;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.callout-desc {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* 上海 */
.area-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.area-box {
  background: #f0f4fa;
  border-radius: 16px;
  padding: 32px;
}

.area-title {
  font-size: 28px;
  font-weight: 700;
  color: #053A82;
  text-align: center;
  margin-bottom: 20px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-text {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 24px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-text-small {
  font-size: 16px;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-highlight {
  font-size: 24px;
  color: #053A82;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.area-badge {
  font-size: 15px;
  font-weight: 700;
  color: #053A82;
  background: #FFD700;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-number {
  font-size: 28px;
  font-weight: 700;
  color: #053A82;
  line-height: 1;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-unit {
  font-size: 17px;
  color: #222;
  margin-left: 4px;
}

.area-label {
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
  color: #222;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.area-box {
  background: #f0f4fa;
  border-radius: 16px;
  padding: 32px;
}

.area-title {
  font-size: 28px;
  font-weight: 700;
  color: #053A82;
  text-align: center;
  margin-bottom: 20px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-text {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 24px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-text-small {
  font-size: 16px;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-highlight {
  font-size: 24px;
  color: #053A82;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.area-badge {
  font-size: 15px;
  font-weight: 700;
  color: #053A82;
  background: #FFD700;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-badge--blue {
  background: #f0f4fa;
}

.area-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-number {
  font-size: 28px;
  font-weight: 700;
  color: #053A82;
  line-height: 1;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-unit {
  font-size: 17px;
  color: #222;
  margin-left: 4px;
}

.area-label {
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
  color: #222;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

/* Cards grid */
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.area-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s;
}

.area-card--active {
  border: 2px solid #FFD700;
}

/* Detail panel */
.area-detail {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid #e2e8f0;
}

.area-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 4px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-detail-desc {
  font-size: 17px;
  font-weight: 500;
  color: #222;
  margin-bottom: 16px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

/* Bar rows */
.area-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.area-bar-row--last {
  margin-bottom: 14px;
}

.area-bar-label {
  font-size: 15px;
  color: #222;
  min-width: 130px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-bar-track {
  flex: 1;
  height: 7px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.area-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: #FFD700;
  transition: width 0.5s;
}

.area-bar-value {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  min-width: 70px;
  text-align: right;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.area-detail-reason {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

@media (max-width: 999px) {

  .hero-title-pc {
    display: none;
  }

  .hero-title-sp {
    display: block;
  }

  .area-box {
    padding: 24px 16px;
  }

  .area-title {
    font-size: 22px;
  }

  .area-text {
    font-size: 15px;
  }

  .area-text-small {
    font-size: 14px;
  }

  .area-highlight {
    font-size: 18px;
  }

  .area-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .area-card {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .area-badge {
    white-space: nowrap;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .area-card-title {
    font-size: 17px;
    margin-bottom: 0;
    flex: 1;
  }

  .area-number {
    font-size: 22px;
    white-space: nowrap;
  }

  .area-unit {
    font-size: 14px;
  }

  .area-label {
    display: none;
  }

  .area-detail {
    padding: 16px;
  }

  .area-detail-title {
    font-size: 19px;
  }

  .area-detail-desc {
    font-size: 14px;
  }

  .area-bar-label {
    font-size: 13px;
    min-width: 100px;
  }

  .area-bar-value {
    font-size: 14px;
    min-width: 56px;
  }

  .area-detail-reason {
    font-size: 13px;
  }
}

/* 600px以下：卡片内部恢复竖向排列 */
@media (max-width: 600px) {

  .area-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .area-badge {
    margin-bottom: 4px;
  }

  .area-card-title {
    font-size: 17px;
    margin-bottom: 6px;
    flex: unset;
  }

  .area-number {
    font-size: 24px;
  }

  .area-label {
    display: block;
  }

  .area-bar-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .area-bar-label {
    width: 100%;
    min-width: unset;
  }

  .area-bar-track {
    flex: 1;
  }

  .area-bar-value {
    min-width: unset;
  }
}



/* Open rate stat */
.open-rate {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 20px 0 0;
  padding: 24px 28px;
  background: #f0f4fa;
  border-radius: 16px;
}

.open-rate-number {
  font-size: 52px;
  font-weight: 700;
  color: #053A82;
  line-height: 1;
  flex-shrink: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.open-rate-unit {
  font-size: 20px;
  font-weight: 700;
  color: #053A82;
  font-family: Arial, Helvetica, sans-serif;
}

.open-rate-text {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.open-rate-text strong {
  color: #053A82;
  font-weight: 700;
}

/* Timing conclusion box */
.timing-box {
  margin: 20px 0 0;
  padding: 24px 28px;
  background: #f0f4fa;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 640px) {
  .flow-section {
    padding: 56px 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .timeline {
    padding-left: 56px;
  }

  .timeline::before {
    left: 15px;
  }

  .step-dot {
    left: -56px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-title {
    font-size: 15px;
    line-height: 40px;
  }

  .open-rate {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .open-rate-number {
    font-size: 40px;
  }

  .callout-box {
    padding: 20px 20px;
  }

  .callout-badge {
    font-size: 12px;
  }

  .callout-title {
    font-size: 20px;
  }

  .callout-desc {
    font-size: 15px;
  }

  .open-rate-number {
    font-size: 32px;
  }

  .open-rate-text {
    font-size: 15px;
    text-align: left;
  }
}


.timing-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.5;
}

.timing-desc {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
}

.timing-desc strong {
  color: #053A82;
  font-weight: 700;
}


/* Main layout */
.case-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Flyer showcase */
.flyer-showcase {
  position: relative;
}

.flyer-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}

.flyer-tab {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #999;
  background: #f0f4fa;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.flyer-tab:first-child {
  border-radius: 8px 0 0 8px;
}

.flyer-tab:last-child {
  border-radius: 0 8px 8px 0;
}

.flyer-tab.active {
  background: #053A82;
  color: #fff;
}

.flyer-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  border: 1px solid #e2e8f0;
}

.flyer-image-wrap img {
  width: 100%;
  display: block;
  transition: opacity 0.3s;
}

.flyer-format {
  margin-top: 12px;
  text-align: center;
  font-size: 15px;
  color: #999;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* Results side */
.results-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-message {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 8px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.result-message em {
  font-style: normal;
  color: #053A82;
  font-size: 24px;
}

.result-sub {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 1.8;
  margin-bottom: 8px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: #f0f4fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-card.highlight {
  background: #053A82;
}

.stat-number {
  font-size: 44px;
  font-weight: 700;
  color: #053A82;
  line-height: 1;
  margin-bottom: 4px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.stat-card.highlight .stat-number {
  color: #FFD700;
}

.stat-unit {
  font-size: 36px;
  font-weight: 700;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.stat-label {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.special {
  font-size: 17px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 2px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.stat-card.highlight .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.stat-note {
  font-size: 15px;
  color: #222;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.stat-card.highlight .stat-note {
  color: rgba(255, 255, 255, 0.9);
}

/* Full-width callout */
.callout-full {
  background: #f0f4fa;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 28px;
  grid-column: 1 / -1;
  max-width: calc(1200px - 64px);
  width: calc(100% - 64px);
  margin: 0 auto;
  justify-self: center;
}

.callout-quote {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.callout-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: #053A82;
  border-radius: 2px;
}

.callout-detail {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  padding-left: 20px;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.callout-detail strong {
  color: #053A82;
}

/* What was in the flyer */
.flyer-contents {
  background: #f0f4fa;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
}

.flyer-contents-title {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.flyer-contents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.content-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #222;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.content-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #053A82;
  flex-shrink: 0;
}

.section-note {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin: 32px auto 0;
  line-height: 1.6;
  font-weight: 500;
  max-width: 1200px;
  padding: 0 20px;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .case-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .result-message {
    font-size: 18px;
  }

  .stat-number {
    font-size: 28px;
  }
}

/* === compare === */
.compare-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
}


/* === support === */
.support-section {
  margin: 0 32px;
  padding: 80px 0px;
  max-width: calc(1200px - 64px);
  width: calc(100% - 64px);
  margin: 0 auto;
  justify-self: center;
}

/* Problem → Solution layout */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 56px;
}

.problem-box {
  background: #f0f4fa;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
}

.problem-title {
  font-size: 18px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.problem-item:last-child {
  border-bottom: none;
}

.problem-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f4fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.problem-text strong {
  color: #222;
  font-weight: 700;
}

/* Arrow */
.arrow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.arrow-connector svg {
  width: 48px;
  height: 48px;
}

/* Solution box */
.solution-box {
  background: #fff;
  border: 2px solid #FFD700;
  border-radius: 16px;
  padding: 40px 28px 32px 28px;
  position: relative;
}

.solution-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #053A82;
  font-size: 15px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.solution-title {
  font-size: 18px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 16px;
  text-align: center;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.solution-item:last-child {
  border-bottom: none;
}

.solution-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #053A82;
}

.solution-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.solution-text strong {
  color: #222;
  font-weight: 700;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service-card {
  background: #f0f4fa;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
}

.service-card:hover {
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgba(26, 60, 110, 0.06);
  transform: translateY(-2px);
}

.service-emoji {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 6px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.service-desc {
  font-size: 14px;
  color: #222;
  line-height: 1.6;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  text-align: left;
}

/* Flow: Ad → Customer → 520 JAPAN */
.flow-strip {
  background: #f0f4fa;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 40px;
}

.flow-strip-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.flow-step-item {
  text-align: center;
  flex: 0 0 auto;
}

.flow-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 8px;
}

.flow-step-circle.gray {
  background: #e2e8f0;
}

.flow-step-circle.blue {
  background: #053A82;
}

.flow-step-circle.amber {
  background: #FFD700;
}

.flow-step-label {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.flow-step-label strong {
  color: #053A82;
  display: block;
  font-size: 17px;
}

.flow-arrow {
  font-size: 20px;
  color: #FFD700;
  padding: 0 12px;
  margin-bottom: 40px;
}

/* Bottom callout */
.bottom-callout {
  background: #053A82;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.bottom-callout-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 8px;
  line-height: 1.5;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.bottom-callout-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  margin: 0 auto;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.bottom-callout-desc strong {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .problem-solution {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .arrow-connector {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flow-steps {
    flex-direction: column;
    gap: 0;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

}


/* === pricing === */
.pricing-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
}


/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #053A82;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}





/* データカード */
.data-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 64px 0;
}

.data-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.data-card::before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -80px;
  width: 432px;
  height: 384px;
  background: linear-gradient(180deg, #CEEFF9 0%, rgba(206, 239, 249, 0) 61%);
  border-radius: 50%;
  filter: blur(50.9px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.data-card::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 432px;
  height: 384px;
  background: linear-gradient(180deg, #D6E6FB 0%, rgba(214, 230, 251, 0) 60%);
  border-radius: 50%;
  filter: blur(50.9px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.circle-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  object-fit: contain;

  display: block;
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  z-index: 2;
  /* ⭐确保在图片上方 */
}

/* 円形プログレス */
.circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
  /* 卡片内水平居中 */
}

.circle-wrap svg {
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: #e0f0f5;
  stroke-width: 10;
}

.circle-fg {
  fill: none;
  stroke: url(#circleGrad);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 0;
}

.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.circle-num {
  font-size: 52px;
  font-weight: 700;
  color: #053A82;
  line-height: 1;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.circle-label {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-top: 6px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.circle-note {
  font-size: 18px;
  color: #222;
  text-align: center;
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* 棒グラフ */
.bar-card {}

.bar-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.bar-num {
  font-size: 50px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 20px;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}

.bar-chart {
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: flex-end;

  gap: 40px;
  /* ← 左右两组拉开一点 */
  height: 120px;
  /* ← 给更高空间（因为右边柱子变高） */
  margin: 0 auto 8px;
  position: relative;
}

.bar-chart::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(17, 116, 145, 0.22);
}

.bar-chart::before {
  top: 0;
  /* ← 改这里 */
  bottom: auto;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.bar {
  width: 48px;
  border-radius: 4px 4px 0 0;
}

.bar.sns {
  height: 20px;
  background: #C8DDE5;
}

.bar.visa {
  height: 72px;
  background: linear-gradient(180deg, #54D2E0 0%, #053A82 100%);
}

.bar-note {
  font-size: 18px;
  color: #222;
  text-align: center;
  line-height: 1.6;
  margin-top: 28px;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.sns-group .bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.bar.sns1 {
  height: 10px;
  background: #C7E3F1;
}

.bar.sns2 {
  height: 18px;
  background: #D9EBF5;
}

.bar.sns3 {
  height: 24px;
  background: #ACD5E3;
}

.bar.visa {
  height: 100px;
  /* ← 比现在更高 */
  background: linear-gradient(180deg,
      #56A89C 0%,
      #226E78 100%);
}

.bar {
  width: 48px;
  /* ← 原来48太粗，现在更精致 */
  border-radius: 3px 3px 0 0;
}

.bar-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(17, 116, 145, 0.22);
}

.line-2 {
  bottom: 40px;
  /* ← 自己可以微调 */
}

.line-3 {
  bottom: 80px;
}

.bar-name {
  font-size: 20px;
  color: #053A82;
  margin-top: 6px;
  font-weight: 700;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* ボトムバナー */
.bottom-banner {
  padding: 20px;
  text-align: center;
}

.bottom-banner-text {
  font-size: 26px;
  font-weight: 700;
  color: #053A82;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}



/* Why us */

/* ===== 强制隔离作用域 ===== */
.whyus-custom * {
  box-sizing: border-box;
}

/* ===== 整体 ===== */
.whyus-custom {
  background: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 72px 20px;
}

/* 容器 */
.whyus-custom .whyus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* ===== 左侧 ===== */
.whyus-custom .whyus-left {
  flex: 1;
}

.whyus-custom .whyus-eyebrow {
  color: #053A82;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.whyus-custom .whyus-title {
  font-size: 28px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* 图片 */
.whyus-custom .whyus-image img {
  width: 90%;
  aspect-ratio: 403 / 302;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid #053A82;
  display: block;
  margin-bottom: 20px;
}

/* 文本 */
.whyus-custom .whyus-desc p {
  margin: 4px 0;
  font-size: 17px;
  line-height: 1.6;
  color: #222;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* ===== 右侧 ===== */
.whyus-custom .whyus-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.whyus-custom .whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}


/* 卡片 */
.whyus-custom .stat-box {
  position: relative;
  height: 180px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  background: #053A82;
  background-clip: padding-box;
}


/* 文字 */
.whyus-custom .stat-label {
  margin-top: 10px;
  font-size: 22px;
  color: #053A82;
  font-weight: bold;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.whyus-custom .stat-sub {
  font-size: 17px;
  color: #222;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}


/* レポート */

/* ===== grid 保持不变 ===== */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* ===== 卡片 ===== */
.report-item {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  overflow: hidden;

  /* 阴影 */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

/* ===== 左侧椭圆 ===== */
.report-item::before {
  content: "";
  position: absolute;
  width: 273px;
  height: 378px;
  left: -80px;
  top: 20px;
  border-radius: 50%;

  background: linear-gradient(to bottom, rgba(206, 239, 249, 1), rgba(206, 239, 249, 0.61));
  opacity: 0.37;
  filter: blur(50.9px);
}

/* ===== 右上椭圆 ===== */
.report-item::after {
  content: "";
  position: absolute;
  width: 273px;
  height: 378px;
  right: -80px;
  top: -120px;
  border-radius: 50%;

  background: linear-gradient(to bottom, rgba(214, 230, 251, 1), rgba(214, 230, 251, 0.61));
  opacity: 0.37;
  filter: blur(50.9px);
}

/* ===== 图片 ===== */
.report-image img {
  width: 100%;
  max-width: 204px;
  aspect-ratio: 204 / 160;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  position: relative;
  z-index: 1;
}

/* ===== 标题 ===== */
.report-title {
  font-size: 20px;
  font-weight: bold;
  color: #053A82;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* ===== 描述 ===== */
.report-desc {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.report-desc p {
  font-size: 17px;
  color: #222;
  line-height: 1;
  margin: 2px 0;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* ===== badge ===== */
.report-badge {
  display: inline-block;
  border: 1px solid #053a82;
  color: #053a82;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* 容器 */
.report-images {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  margin-bottom: 72px;
}

/* 每张图 */
.report-img {
  flex: 1;
}

/* 图片本体 */
.report-img img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 4px solid #053A82;
  /* 描边 */
  object-fit: cover;
}

/* ===== 整屏背景 ===== */
.flow-section {
  background: linear-gradient(135deg, #174484, #053A82);

  width: 100vw;
  margin-left: calc(-50vw + 50%);

  padding: 100px 0;
}

.flow-simple {
  background: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0px 40px;
}

.flow-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 小标题 */
.flow-eyebrow {
  color: #053A82;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

/* 大标题 */
.flow-title {
  color: #053A82;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

/* ===== 时间轴整体 ===== */
.flow-timeline {
  position: relative;
  margin-top: 40px;
  margin-bottom: 60px;
}

/* 虚线 */
.flow-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  border-top: 2px dashed #053A82;
}


/* 单个step */
.flow-step {
  text-align: center;
  position: relative;
}

/* 圆点 */
.flow-dot {
  width: 12px;
  height: 12px;
  background: #053A82;
  border-radius: 50%;

  margin: 0 auto;

  position: relative;
  top: 40px;
  /* ⭐ 和虚线对齐 */
  transform: translateY(-50%);
  /* ⭐ 让中心压在虚线上 */

  z-index: 2;
}


/* ===== 卡片 ===== */
.flow-card {
  margin-top: 40px;
  padding: 20px 0 20px 0;
  border-radius: 12px;
  position: relative;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.25));
  backdrop-filter: blur(6px);
}

/* 渐变描边 */
.flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 4px;
  background: #6AA9FF;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* 椭圆光效 */
.flow-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 200px;
  background: rgba(157, 245, 255, 0.35);
  filter: blur(90px);
  border-radius: 50%;
  top: -40px;
  left: -40px;
}

/* 卡片文字 */
.flow-card-top {
  color: #053A82;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: bold;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.flow-card-bottom {
  color: #222;
  font-size: 17px;
  margin: 12px 8px;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* 内部小卡片 */
.flow-card-inner {
  height: auto;
  width: 100%
}

/* 图片 */
.flow-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-extra-text {
  font-size: 26px;
  color: #053A82;
  text-align: center;
  font-weight: 700;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* 比較表 */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 40px;
}

.compare-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
}

.compare-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  vertical-align: top;
}

.compare-table tr:last-child td {
  border-bottom: 1px solid var(--border);
}

.col-feature {
  width: 22%;
  color: var(--gray);
  font-size: 13px;
}

.col-visa {
  width: 39%;
  background: var(--bg-green);
}

.col-sns {
  width: 39%;
}

.th-visa {
  background: var(--light-green);
  color: var(--dark-green);
}

.th-sns {
  color: var(--gray);
}

.badge-good {
  display: inline-block;
  background: var(--light-green);
  color: var(--dark-green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 4px;
}

.badge-bad {
  display: inline-block;
  background: #FCEBEB;
  color: #A32D2D;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 4px;
}


/* 外层父容器：平分并保持间距 */
.custom-compare-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 0px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- 左侧卡片底层 (渐变层) --- */
.visa-card-box {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, #053A82 76%, #053A82 100%);
  border-radius: 24px;
  box-shadow: 2px 5px 20.7px rgba(17, 116, 145, 0.2);
  padding-top: 80px;
  /* 留出标题高度 */
}

/* 推荐小标签 */
.recommend-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #053A82;
  padding: 4px 20px;
  border-radius: 50px;
  font-weight: bold;
  z-index: 2;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.visa-card-title {
  position: absolute;
  top: 25px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  margin: 0;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* --- 左侧卡片上层 (内容层) --- */
.visa-card-inner {
  background-color: #F3F8FF;
  border-radius: 24px;
  padding: 16px;
  /* 与底层矩形底部对齐，通过不设置底部margin实现 */
}

/* --- 右侧卡片底层 (灰色层作为对比) --- */
.sns-card-box {
  flex: 1;
  background-color: #F2F2F2;
  /* 浅灰底 */
  border-radius: 24px;
  padding-top: 80px;
  position: relative;
  box-shadow: 2px 5px 20.7px rgba(17, 116, 145, 0.2);
}

.sns-card-title {
  position: absolute;
  top: 25px;
  width: 100%;
  text-align: center;
  color: #666666;
  font-size: 26px;
  margin: 0;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.sns-card-inner {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 16px;
}

/* --- 共有行样式 --- */
.compare-row-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #D1D1D1;
  /* 灰色分隔线 */
  height: 148px;
}

.compare-row-item:last-child {
  border-bottom: none;
}

.row-icon {
  width: 100px;
  /* 预留图标宽度 */
  margin-right: 20px;
  flex-shrink: 0;
}

.row-icon img {
  width: 100%;
  height: auto;
}

.row-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 三行文字大小 */
.row-title {
  font-size: 18px;
  color: #222;
  font-weight: bold;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

.row-value {
  font-size: 20px;
  color: #053A82;
  font-weight: bold;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

/* 蓝色背景文案 */
.row-badge {
  display: inline-block;
  background-color: rgba(5, 58, 130, 0.1);
  /* #053A82 20% */
  color: #053A82;
  font-size: 14px;
  font-weight: 800;
  padding: 10px;
  border-radius: 6px;
  align-self: flex-start;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

/* 右侧卡片灰色文字/底色 */
.gray-txt {
  color: #888888;
}

.row-badge-gray {
  display: inline-block;
  background-color: #F0F0F0;
  color: #888888;
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  align-self: flex-start;
}


/* 価格比較 */
.comp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.comp-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.comp-card.ours {
  border: 2px solid var(--green);
  background: var(--bg-green);
}

.comp-name {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}

.comp-name.ours {
  color: var(--dark-green);
  font-weight: 700;
}

.comp-price {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.comp-price.ours {
  color: var(--green);
}

.comp-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
}

.comp-note.good {
  color: var(--green);
  font-weight: 600;
}

.custom-compare-text {
  font-size: 17px;
  color: #053A82;
  text-align: center;
  font-weight: 700;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* プラン */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--border)
}

.plan-card.featured {
  position: relative
}


.plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 13px 0 6px;
  background: #FFD700;
  color: #053A82;
  font-size: 17px;
  font-weight: 600;
  padding: 6px 14px;
  margin-bottom: 12px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-name {
  font-size: 17px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 6px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-price {
  font-size: 32px;
  font-weight: 700;
  color: #053A82;
  margin: 10px 0 4px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-price-sub {
  font-size: 17px;
  color: #222;
  margin-bottom: 2px;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-vol {
  font-size: 17px;
  color: #222;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-tanka {
  font-size: 17px;
  color: #222;
  font-weight: 500;
  margin-bottom: 16px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-vol-num {
  font-size: 17px;
  color: #222;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-tanka-num {
  font-size: 17px;
  color: #222;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.plan-feature {
  font-size: 17px;
  color: #053A82;
  padding: 5px 0;
  display: flex;
  gap: 8px;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.plan-feature::before {
  content: "";
  width: 20px;
  /* 根据你的icon尺寸调整 */
  height: 20px;
  background: url('../images/icon-check.png') center/contain no-repeat;
  flex-shrink: 0;
}

.print-banner {
  background: rgba(106, 166, 255, 0.2);
  border-radius: 10px;
  padding: 16px 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.print-text-title {
  font-size: 20px;
  color: #053A82;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 12px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.print-text-desc {
  font-size: 17px;
  color: #222;
  line-height: 1;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* デザインオプション */
.design-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.design-card {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.design-card.featured {
  position: relative
}



.design-card-name {
  font-size: 17px;
  font-weight: 600;
  color: #053A82;
  margin-bottom: 8px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.design-card-price {
  font-size: 26px;
  font-weight: bold;
  color: #053A82;
  margin: 10px 0 10px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.design-card-desc {
  font-size: 17px;
  color: #222;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.feature-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.feature-list li {
  font-size: 17px;
  color: #053A82;
  font-weight: 500;
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.feature-list li::before {
  content: "";
  width: 20px;
  /* 根据你的icon尺寸调整 */
  height: 20px;
  background: url('../images/icon-check.png') center/contain no-repeat;
  flex-shrink: 0;
}



.anshin-badge {
  display: inline-block;
  background: var(--light-green);
  color: var(--dark-green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  margin-top: 12px;
}

/* 見積もり */
.estimate-section {
  background: var(--light-gray);
  padding: 72px 40px;
  margin-top: 75px;
}

.estimate-inner {
  max-width: 960px;
  margin: 0 auto;
}

.step-label {
  font-size: 17px;
  font-weight: 700;
  color: #053A82;
  margin-bottom: 12px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.step-label span {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #053A82;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.option-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.option-card:hover {
  border-color: #053A82;
}

.option-card.selected {
  border-color: #053A82;
  background: rgba(106, 169, 255, 0.15);
}

.option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.option-card.selected .option-check {
  background: #053A82;
  border-color: #053A82;
}

.check-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: none;
}

.option-card.selected .check-inner {
  display: block;
}

.option-tag {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.option-name {
  font-size: 17px;
  font-weight: 600;
  color: #053A82;
  margin-bottom: 6px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.option-price {
  font-size: 26px;
  font-weight: 700;
  color: #053A82;
  margin: 8px 0;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.option-unit {
  font-size: 17px;
  color: #053A82;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.option-features {
  list-style: none;
}

.option-features li {
  font-size: 17px;
  color: #053A82;
  font-weight: 500;
  padding: 3px 0;
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.option-features li::before {
  content: "";
  width: 16px;
  /* 根据你的icon尺寸调整 */
  height: 16px;
  background: url('../images/icon-check.png') center/contain no-repeat;
  flex-shrink: 0;
}

.summary-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}



.summary-title {
  font-size: 20px;
  font-weight: 600;
  color: #053A82;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.summary-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.summary-row.total {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  padding-top: 16px;
  border-top: 2px solid var(--border);
  border-bottom: none;
}

.summary-row.total .total-price {
  color: var(--green);
  font-size: 28px;
}

.summary-empty {
  font-size: 14px;
  color: #aaa;
  text-align: center;
  padding: 16px 0;
}

.summary-note {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.est-cta-btn {
  display: inline-block;
  background: #FFD700;
  color: #053A82;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(4, 73, 106, 0.3);
  border: none !important;
}

.est-cta-btn:hover {
  background-color: #042450;
  color: #fff;
}

.est-cta-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  color: #fff;
}

.est-cta-sub {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

.summary-table {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(9.2px);

}

.summary-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
}

.row-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  align-self: stretch;
}

/* total行的分割线隐藏 */
.summary-row.total .row-divider {
  background: transparent;
}

.summary-row.total {
  border-bottom: none;
  /* 最后一行不要横线 */
}

/* 纵向分割线，只显示前两行 */
.summary-row:not(.total)::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  align-self: stretch;
}

/* total行隐藏纵向分割线 */
.summary-row.total::after {
  background: transparent;
}

.row-left {
  font-size: 24px;
  color: #053A82;
  padding: 14px 16px;
  text-align: left;
  font-weight: bold;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.row-right {
  font-size: 24px;
  color: #053A82;
  padding: 14px 16px;
  text-align: left;
  font-weight: bold;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.summary-row.total .row-left {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.summary-row.total .row-right {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.summary-line1 {
  font-size: 17px;
  color: #ffff;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.summary-line2 {
  font-size: 24px;
  color: #fff;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

/* フォーム */
.form-area {
  display: none;
  margin-top: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-area.visible {
  display: block;
}

.selected-summary-box {
  background: #053A82;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
  line-height: 1.8;
  font-weight: 600;
}

.caution-box {
  background: var(--light-gray);
  border-left: 3px solid #ccc;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 17px;
  color: #053A82;
  line-height: 1.7;
  font-weight: 500;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  font-family: YuGothic, 'Yu Gothic', sans-serif；
}

.form-label span {
  color: var(--red);
  margin-left: 2px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  font-size: 17px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: #053A82 !important;
  -webkit-text-fill-color: #053A82 !important;
  font-weight: 500;

  outline: none;
  transition: border-color 0.15s;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
}

input::placeholder,
textarea::placeholder {
  color: #9CA3AF;
  -webkit-text-fill-color: #9CA3AF;
}

input:focus,
textarea:focus {
  border-color: #053A82;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.submit-btn {
  width: 100%;
  display: inline-block;
  background: #FFD700;
  color: #053A82;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(4, 73, 106, 0.3);
  border: none !important;
}

.submit-btn:hover {
  background-color: #042450;
  color: #fff;
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  color: #fff;
}

.form-note {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 8px;
}

/* 個人情報同意チェックボックス */
.privacy-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 20px 0 8px;
  width: fit-content;
}

.privacy-check-label input[type="checkbox"] {
  display: none;
}

.privacy-check-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s;
}

.privacy-check-label input[type="checkbox"]:checked+.privacy-check-custom {
  background: #3b82f6;
}

.privacy-check-label input[type="checkbox"]:checked+.privacy-check-custom::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.privacy-check-text {
  font-size: 15px;
  color: #222;
}

.privacy-note {
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.privacy-note a {
  color: #053A82;
  text-decoration: underline;
}

.privacy-note a:hover {
  opacity: 0.75;
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .lp-nav a {
    font-size: 14px;
  }

  .lp-nav {
    gap: 8px;
  }

}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .lp-nav a {
    font-size: 16px;
  }

  .lp-nav {
    gap: 16px;
  }

}


@media only screen and (min-width: 769px) and (max-width: 1480px) {

  .result-message {
    font-size: 18px;
  }

  .stat-number {
    font-size: 40px;
  }

  .callout-quote {
    font-size: 22px;
  }

  .callout-detail {
    font-size: 16px;
  }

  .service-name {
    font-size: 18px;
  }

  .flow-strip-title {
    font-size: 18px;
  }

  .flow-step-label strong {
    font-size: 16px;
  }

  .bottom-callout-title {
    font-size: 18px;
  }


  .step-dot {
    width: 40px;
    height: 40px;
  }

  .step-title {
    font-size: 22px;
  }

  .step-desc {
    font-size: 16px;
  }

  .timeline::before {
    left: 20px;
  }

  .callout-title {
    font-size: 22px;
  }

  .callout-desc {
    font-size: 16px;
  }

  .open-rate-number {
    font-size: 48px;
  }

  .open-rate-text {
    font-size: 16px;
  }

  .timing-title {
    font-size: 22px;
  }

  .timing-desc {
    font-size: 16px;
  }

  .hero {
    background: url('../images/lp-hero-bg-1400.png') center/cover no-repeat;
  }

  .hero-badge {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-metric-num {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-cta,
  .est-cta-btn,
  .submit-btn {
    font-size: 16px;
  }

  .hero-note {
    font-size: 16px;
  }

  .section-label {
    font-size: 22px;
  }

  .section-title {
    font-size: 25px;
  }

  .section {
    padding: 48px 32px 0px 32px;
  }

  .video-caption {
    font-size: 16px;
  }

  .timeline-text {
    font-size: 22px;
  }

  .timeline-item.highlight .timeline-text p {
    font-size: 18px;
  }

  .timeline-item.highlight .timeline-text strong {
    font-size: 22px;
  }

  .bar-num， .circle-num {
    font-size: 44px;
  }

  .bar-name， .circle-label {
    font-size: 18px;
  }

  .circle-note {
    font-size: 17px;
  }

  .bar-title {
    font-size: 24px;
  }

  .bottom-banner-text {
    font-size: 24px;
  }

  .whyus-custom {
    padding: 0px 60px 32px 60px;
  }

  .whyus-custom .whyus-desc p {
    font-size: 16px;
  }

  .whyus-custom .stat-box {
    font-size: 29px;
  }

  .whyus-custom .stat-label {
    font-size: 20px;
  }

  .flow-card-bottom， .report-desc p,
  .section-desc,
  .whyus-custom .stat-sub {
    font-size: 16px;
  }

  .flow-card-top {
    font-size: 18px;
  }

  .flow-card-bottom {
    font-size: 16px;
  }

  .flow-extra-text {
    font-size: 23px;
  }

  .recommend-tag {
    font-size: 16px;
  }

  .sns-card-title {
    font-size: 23px;
  }

  .visa-card-title {
    font-size: 23px;
  }

  .form-label,
  .caution-box,
  .summary-line1,
  .option-features li,
  .option-unit,
  .option-name,
  .option-tag,
  .step-label,
  .design-card.featured .feature-list li,
  .design-card.featured .design-card-desc,
  .design-card.featured .design-card-name,
  .feature-list li,
  .design-card-desc,
  .design-card-name,
  .print-text-desc,
  .plan-feature,
  .plan-tanka-num,
  .plan-tanka,
  .plan-vol-num,
  .plan-vol,
  .plan-price-sub,
  .plan-card.featured .plan-feature,
  .plan-card.featured .plan-tanka,
  .plan-card.featured .plan-vol,
  .plan-card.featured .plan-price-sub,
  .plan-name,
  .plan-card.featured .plan-name,
  .plan-badge {
    font-size: 16px;
  }

  .design-card.featured .design-card-price,
  .design-card-price,
  .plan-price,
  .plan-card.featured .plan-price {
    font-size: 28px;
  }

  .option-features li::before， .feature-list li::before,
  .design-card.featured .feature-list li::before,
  .plan-feature::before,
  .plan-card.featured .plan-feature::before {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }

  .summary-line2,
  .print-text-title {
    font-size: 18px;
  }

  .summary-title {
    font-size: 18px;
  }

  .summary-row.total .row-right,
  .summary-row.total .row-left,
  .row-right,
  .row-left {
    font-size: 22px;
  }

  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    font-size: 16px;
  }


}

/* ========================= */
/* 📱 MOBILE OVERRIDE START */
/* ========================= */

@media (max-width: 1000px) {

  /* ========== 全局基础 ========== */
  body {
    font-size: 14px;
  }


  .sp-br {
    display: inline;
  }

  html {
    font-size: 14px;
  }

  .section {
    padding: 48px 20px 0px 20px;
  }

  .section-title {
    font-size: 22px;
  }

  /* ========== Header ========== */
  .lp-header {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
    text-align: center;
  }

  .lp-menu {
    display: block;
  }

  .menu-panel {
    display: block;
  }

  .lp-nav {
    display: none;
  }


  .lp-header .header-cta {
    display: none;
  }

  /* ========== Hero ========== */
  .hero {
    padding: 80px 16px;
    min-height: auto;
    margin-top: 0;
  }

  .hero-badge {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-note {
    font-size: 15px;
  }

  .hero-metrics {
    gap: 12px;
  }

  .hero-metric-label {
    font-size: 16px;
  }

  .hero-metric {
    width: 100%;
    max-width: 160px;
    height: auto;
    padding: 16px;
  }

  .hero-metric-num {
    font-size: 30px;
  }

  .hero {
    background: url('../images/lp-hero-bg-1000.png') center/cover no-repeat;
  }

  .hero-inner {
    margin-left: auto;
    margin-right: 10px;
  }

  /* 白色模糊底 */
  .hero-inner::before {
    content: "";
    position: absolute;
    inset: -20px;
    /* 👈 比内容稍微大一点，避免边缘太硬 */

    background: rgba(255, 255, 255, 0.6);
    /* 白色+透明度 */
    filter: blur(30px);
    /* 边缘虚化关键 */

    z-index: -1;
    /* 放在文字下面 */
    border-radius: 20px;
    /* 可选：更柔和 */
  }

  .section-label {
    font-size: 19px;
  }

  .section-title {
    font-size: 21px;
  }

  .bar-num， .circle-num {
    font-size: 36px;
  }

  .bar-name， .circle-label {
    font-size: 16px;
  }

  .circle-note {
    font-size: 15px;
  }

  .bar-title {
    font-size: 20px;
  }

  .bottom-banner-text {
    font-size: 20px;
  }

  .video-caption {
    font-size: 15px;
  }

  .timeline-text {
    font-size: 19px;
  }

  .timeline-item:last-child .timeline-dot {
    background: #053a82 !important;
  }


  /* ========== 卡片统一缩小 ========== */
  .data-card,
  .report-item,
  .plan-card,
  .design-card {
    padding: 16px;
  }

  /* ========== Why us ========== */

  .whyus-custom {
    padding: 0px 60px;
  }

  .whyus-custom .whyus-inner {
    flex-direction: column;
    gap: 24px;
  }


  .whyus-custom .whyus-title {
    font-size: 22px;
  }

  /* ========== Flow ========== */


  .flow-line {
    display: none;
  }

  .flow-title {
    font-size: 22px;
  }

  /* ========== Timeline ========== */
  .timeline {
    margin: 20px 10px;
  }

  .timeline-item.highlight .timeline-text {
    padding: 12px 16px;
    margin-left: 0;
  }

  .timeline-item.highlight .timeline-text p {
    font-size: 15px;
  }

  .timeline-item.highlight .timeline-text strong {
    font-size: 19px;
  }

  .bar-title {
    font-size: 22px;
  }

  .bar-num {
    font-size: 40px;
  }

  .bottom-banner-text {
    font-size: 18px;
  }

  /* ========== Video ========== */
  .video-box {
    padding: 10px;
  }


  /* ========== Buttons ========== */
  .hero-cta,
  .est-cta-btn,
  .submit-btn {
    font-size: 15px;
  }

  /* ========== 表单 ========== */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* ========== 装饰图形关闭（避免手机卡顿） ========== */
  .data-card::before,
  .data-card::after,
  .report-item::before,
  .report-item::after,
  .summary-box::before,
  .summary-box::after {
    display: none;
  }

  .visa-card-title {
    font-size: 22px;
  }

  .row-badge {
    font-size: 12px;
  }

  .compare-row-item {
    height: 168px;
  }

  .row-value {
    font-size: 16px;
  }

  .sns-card-title {
    font-size: 22px;
  }

  .row-badge-gray {
    font-size: 12px;
  }

  .whyus-custom .whyus-desc p {
    font-size: 15px;
  }

  .whyus-custom .stat-box {
    font-size: 24px;
  }

  .whyus-custom .stat-label {
    font-size: 18px;
  }

  .report-desc p,
  .section-desc,
  .whyus-custom .stat-sub {
    font-size: 15px;
  }

  .flow-card-top {
    font-size: 16px;
  }

  .flow-card-bottom {
    font-size: 15px;
  }

  .flow-simple {
    padding: 0px 80px;
  }

  .flow-extra-text {
    font-size: 21px;
  }

  .recommend-tag {
    font-size: 15px;
  }

  .sns-card-title {
    font-size: 18px;
  }

  .visa-card-title {
    font-size: 18px;
  }

  .row-title {
    font-size: 15px;
  }

  .row-icon {
    width: 30%;
  }

  .form-label,
  .caution-box,
  .summary-line1,
  .option-features li,
  .option-unit,
  .option-name,
  .option-tag,
  .step-label,
  .design-card.featured .feature-list li,
  .design-card.featured .design-card-desc,
  .design-card.featured .design-card-name,
  .feature-list li,
  .design-card-desc,
  .print-text-desc,
  .plan-feature,
  .plan-tanka-num,
  .plan-tanka,
  .plan-vol-num,
  .plan-vol,
  .plan-price-sub,
  .plan-card.featured .plan-feature,
  .plan-card.featured .plan-tanka,
  .plan-card.featured .plan-vol,
  .plan-card.featured .plan-price-sub,
  .plan-name,
  .plan-card.featured .plan-name {
    font-size: 15px;
  }

  .plan-badge {
    font-size: 12px;
    padding: 2px 8px;
  }


  .design-card.featured .design-card-price,
  .design-card-price,
  .plan-price,
  .plan-card.featured .plan-price {
    font-size: 22px;
  }

  .option-features li::before， .feature-list li::before,
  .design-card.featured .feature-list li::before,
  .plan-feature::before,
  .plan-card.featured .plan-feature::before {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }

  .print-text-title {
    font-size: 16px;
  }

  .estimate-section {
    padding: 36px 20px;
  }

  .summary-line2,
  .summary-title {
    font-size: 16px;
  }

  .summary-row.total .row-right,
  .summary-row.total .row-left,
  .row-right,
  .row-left {
    font-size: 18px;
  }

  /* .footer-inner {
    flex-direction: column;  
    align-items: center;
    gap: 32px;
  }

  .footer-contact {
    align-items: flex-start; 
  } */

  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    font-size: 15px;
  }

  .submit-btn {
    padding: 16px;
  }


}


/* ========================= */
/* 📱 MOBILE OVERRIDE END */
/* ========================= */

@media (max-width: 769px) {

  /* ========== Grid 全部一列 ========== */
  .data-cards,
  .report-grid,
  .plans,
  .design-options,
  .comp-price-grid,
  .option-grid {
    grid-template-columns: 1fr !important;
  }

  .whyus-custom .whyus-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ========== Compare Table ========== */
  .custom-compare-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .timing-title {
    font-size: 20px;
  }

  .timing-desc {
    font-size: 15px;
  }

  .callout-quote {
    font-size: 18px;
  }

  .callout-detail {
    font-size: 15px;
  }

  .report-images {
    flex-direction: column;
    gap: 20px;
  }

  .service-name {
    font-size: 16px;
  }

  .service-desc {
    font-size: 12px;
  }

  .bottom-callout {
    padding: 32px 12px;
  }

  .bottom-callout-title {
    font-size: 16px;
  }

}